home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / BDTOTAB.PAK / OWLTAB.RC < prev    next >
Text File  |  1997-05-06  |  926b  |  42 lines

  1. // owltab.rc
  2. //............................................................................
  3. // includes
  4.  
  5. #if !defined (WORKSHOP_INVOKED)
  6. #include <windows.h>
  7. #endif
  8.  
  9. #include "resource.h"
  10.  
  11. //............................................................................
  12. // Icons
  13.  
  14. IDI_MAIN ICON owltab.ico
  15.  
  16. //............................................................................
  17. // Menus
  18.  
  19. IDM_MAIN MENU
  20. {
  21.     MENUITEM " |< ", IDM_NAV_FIRST
  22.     MENUITEM " << ", IDM_NAV_PRIORSET
  23.     MENUITEM " <  ", IDM_NAV_PRIOR
  24.     MENUITEM "  > ", IDM_NAV_NEXT
  25.     MENUITEM " >> ", IDM_NAV_NEXTSET
  26.     MENUITEM " >| ", IDM_NAV_LAST
  27. }
  28.  
  29. //............................................................................
  30. // Strings
  31.  
  32. STRINGTABLE
  33. {
  34. #ifdef __FLAT__
  35.     IDS_MAINTITLE,    "OWL Table 32"
  36. #else
  37.     IDS_MAINTITLE,    "OWL Table 16"
  38. #endif
  39. }
  40.  
  41. //............................................................................
  42.